> ## Documentation Index
> Fetch the complete documentation index at: https://sequence-0fb8d9e6-api_docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Unreal v1 Game Bootstrap

> Documentation for Unreal SDK API for reading from the blockchain with the Sequence infrastructure stack for web3 gaming.

Sequence's Unreal SDK includes a range of features to help you bootstrap your game.
You can create them as shown below or duplicate the `.uasset` files from the `Plugins/SequencePlugin Content/Samples/`
folder and customize them to fit your needs.

## Inventory

Create the `Sequence Inventory` widget to show all items owned by a user from any ERC1155 or ERC721 contract.

<Frame caption="Feature Inventory Demo">
  <img src="https://mintcdn.com/sequence-0fb8d9e6-api_docs/uFPNPaUQoWqBdCiH/images/unreal/v1/feature_inventory_demo.gif?s=aa120e6ac72151164ec38e167e1481c3" width="600" height="338" data-path="images/unreal/v1/feature_inventory_demo.gif" />
</Frame>

<Frame caption="Feature Inventory">
  <img src="https://mintcdn.com/sequence-0fb8d9e6-api_docs/uFPNPaUQoWqBdCiH/images/unreal/v1/feature_inventory.png?fit=max&auto=format&n=uFPNPaUQoWqBdCiH&q=85&s=829ddb7edecac6b69433c94f7a416b03" width="1200" height="545" data-path="images/unreal/v1/feature_inventory.png" />
</Frame>

<Accordion title="Parameters">
  **Chain (ENetwork Enum)**

  The chain type (Ethereum, Sepolia, ..) on which the specified contract is deployed.

  **Wallet Address (FString)**

  The wallet address of the user for whom you want to list the inventory items.

  **Contract (FString)**

  The address of an ERC1155 or ERC721 contract where the specified wallet address owns items.
</Accordion>

## Primary Sale

Accelerate your game growth by selling items directly to your players. Create the `Sequence Primary Sale` widget to show an In-Game Shop that utilizes game items
from a ERC1155 contract, which users purchase using any custom or existing ERC20 currency.

[Primary Sales Contract](/solutions/builder/contracts/deploy-primary-sales-contract/): Learn how to set up and deploy contracts for launching a primary sale.

<Frame caption="Feature Sale Demo">
  <img src="https://mintcdn.com/sequence-0fb8d9e6-api_docs/uFPNPaUQoWqBdCiH/images/unreal/v1/feature_sale_demo.gif?s=20228e7391405f2031a6e77f17673d30" width="600" height="338" data-path="images/unreal/v1/feature_sale_demo.gif" />
</Frame>

<Frame caption="Feature Sale">
  <img src="https://mintcdn.com/sequence-0fb8d9e6-api_docs/uFPNPaUQoWqBdCiH/images/unreal/v1/feature_sale.png?fit=max&auto=format&n=uFPNPaUQoWqBdCiH&q=85&s=8d3ecebc0162e9e71c4a8a39331ee687" width="1400" height="636" data-path="images/unreal/v1/feature_sale.png" />
</Frame>

<Accordion title="Parameters">
  **Chain (ENetwork Enum)**

  The chain type (Ethereum, Sepolia, ..) on which the specified contract is deployed.

  **Token Contract Address (FString)**

  The address of the ERC1155 or ERC721 token contract you deployed using Sequence's Builder.

  **Sale Contract Address (FString)**

  The address of the sale contract you deployed using Sequence's Builder.

  **Payment Token (FString)**

  The ERC20 token address you specified on the 'Mint Access' section of your Sale contract.

  **Price (Integer)**

  The price for each token you specified on the 'Mint Access' section of your Sale contract.

  **Tokens for Sale (Integer Array)**

  A list of token IDs (e.g. \[0, 1, 2]) that you display in your user interface.
</Accordion>

## My Wallet View

Create the `Sequence Profile` widget to display a QR code to receive funds or send funds to other wallets.

<Frame caption="Feature Wallet Demo">
  <img src="https://mintcdn.com/sequence-0fb8d9e6-api_docs/uFPNPaUQoWqBdCiH/images/unreal/v1/feature_wallet_demo.gif?s=43f33f15aa6e62f9565d97db3530818a" width="600" height="338" data-path="images/unreal/v1/feature_wallet_demo.gif" />
</Frame>

<Frame caption="Feature Wallet">
  <img src="https://mintcdn.com/sequence-0fb8d9e6-api_docs/uFPNPaUQoWqBdCiH/images/unreal/v1/feature_wallet.png?fit=max&auto=format&n=uFPNPaUQoWqBdCiH&q=85&s=e4c60b80f2d6cefca266577b69a774d6" width="1000" height="451" data-path="images/unreal/v1/feature_wallet.png" />
</Frame>

<Accordion title="Parameters">
  **Chain (ENetwork Enum)**

  The chain type (Ethereum, Sepolia, ..) where you want to run your game.

  **Wallet Address (FString)**

  The wallet address of the user for whom you want to display this view.

  **Enable Send (Boolean)**

  Indicates whether to enable the button to open a send view. Set this to false if you want to display the profile of another user.
</Accordion>
